95f0c466252b3f94d9e33b263a95e797734150d3,johnzon-mapper/src/main/java/org/apache/johnzon/mapper/Mapper.java,Mapper,readCollection,#InputStream#ParameterizedType#,189
Before Change
}
public <T> Collection<T> readCollection(final InputStream stream, final ParameterizedType genericType) {
return mapObject(genericType, readerFactory.createReader(stream(stream)));
}
public <T> T readJohnzonCollection(final InputStream stream, final JohnzonCollectionType<T> genericType) {
After Change
}
public <T> Collection<T> readCollection(final InputStream stream, final ParameterizedType genericType) {
return mapObject(genericType, charset == null ? readerFactory.createReader(stream(stream)): readerFactory.createReader(stream(stream), charset));
}
public <T> T readJohnzonCollection(final InputStream stream, final JohnzonCollectionType<T> genericType) {